home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 4 / FM Towns Free Software Collection 4 - Disc 1.iso / t_os / cdur / cd_stop.a86 next >
Text File  |  1991-10-18  |  363b  |  26 lines

  1.  
  2. ;    tab = 8
  3. ;    cd_stop.a86    Cdur の関数cd_stopのアセンブラ化
  4. ;
  5. ;            90/12/12 v1.00
  6.  
  7. CGROUP    GROUP    TEXT
  8.  
  9.     PUBLIC cd_stop_
  10.  
  11. TEXT    CSEG
  12.  
  13. cd_stop_::
  14.     PUSH    CX
  15.     MOV    AX,21184    ; AX = 0x52C0
  16.     XOR    CX,CX        ; CX = 0
  17.      INT    147        ; INT 0x93
  18.     XOR    AL,AL        ; AL = 0
  19.     CMP    AH,128        ; if AH=0x80
  20.     JNE    __a        ; JMP __a
  21.         MOV    AL,CL        ; else AL=CL    
  22.     __a:
  23.  
  24.     POP    CX
  25.     RET    
  26.